Facturación Seiton
1 pkgs
2 Datos
2.1 Importación
Enlistar los archivos de Excel.
Code
archivos <- unzip("Facturass 2.zip") |>
as_tibble() |>
filter(str_detect(value, ".xlsx"),
str_detect(value, "MACOSX", negate = TRUE)) |>
pull(value)Descargar los datos.
Code
datos_tbl <- archivos |>
map_df(~ readxl::read_excel(.x, col_types = "text"))|>
janitor::clean_names()
datos_tbl
Warning
Hace falta modificar las columnas numéricas.
tidyverse